CharIterator

abstract class CharIterator : Iterator<Char>

An iterator over a sequence of values of type Char.

Constructors

CharIterator
Link copied to clipboard
fun CharIterator()

Functions

hasNext
Link copied to clipboard
abstract operator fun hasNext(): Boolean
next
Link copied to clipboard
operator override fun next(): Char
nextChar
Link copied to clipboard
abstract fun nextChar(): Char

Returns the next value in the sequence without boxing.